home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 3863 / 3863.xpi / samples / Macros / Demo-ExtractRelative.iim < prev    next >
Text File  |  2010-01-25  |  1KB  |  33 lines

  1. ∩╗┐VERSION BUILD=6140505     
  2. TAB T=1     
  3. TAB CLOSEALLOTHERS     
  4. URL GOTO=http://www.iopus.com/imacros/demo/v6/extract2/     
  5. '
  6. 'Classic extraction will count the number of cells from the TOP of the page
  7. 'So the 1st cell of the table is the 8th cell on the page
  8. TAG POS=32 TYPE=TD ATTR=TXT:* EXTRACT=TXT  
  9. '
  10. 'Better to use positioning relative to the TAG command that
  11. 'appears just before the TAG/EXTRACT command
  12. '
  13. TAG POS=1 TYPE=DIV ATTR=TXT:MyTable
  14. 'Postion is now R3, the 3rd cell after the text "Mytable"   
  15. TAG POS=R3 TYPE=TD ATTR=TXT:* EXTRACT=TXT 
  16. 'Also extract the following numbers 4 and 5 
  17. TAG POS=R1 TYPE=TD ATTR=TXT:* EXTRACT=TXT 
  18. TAG POS=R1 TYPE=TD ATTR=TXT:* EXTRACT=TXT 
  19. '
  20. 'Alternative solution
  21. '
  22. TAG POS=1 TYPE=DIV ATTR=TXT:MyTable
  23. TAG POS=R3 TYPE=TD ATTR=TXT:* EXTRACT=TXT 
  24. TAG POS=1 TYPE=DIV ATTR=TXT:MyTable
  25. TAG POS=R4 TYPE=TD ATTR=TXT:* EXTRACT=TXT
  26. TAG POS=1 TYPE=DIV ATTR=TXT:MyTable 
  27. TAG POS=R5 TYPE=TD ATTR=TXT:* EXTRACT=TXT 
  28. '
  29. 'Negative positioning => move to the LEFT and/or TOP of the anchor
  30. TAG POS=1 TYPE=TD ATTR=TXT:3   
  31. 'Move two cells left => extract the number "1"
  32. TAG POS=R-2 TYPE=TD ATTR=TXT:* EXTRACT=TXT  
  33.